home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / listings / v_12_05 / plauger / setf2.c < prev    next >
C/C++ Source or Header  |  1994-03-08  |  357b  |  15 lines

  1.  
  2. --------- Listing 11: The function ios::setf(fmtflags, fmtflags) -----------
  3.  
  4. // iossetf2 -- ios::setf(fmtflags, fmtflags)
  5. #include <ios>
  6.  
  7. ios::fmtflags ios::setf(fmtflags nf, fmtflags mask)
  8.     {    // set format bits under mask
  9.     ios::fmtflags of = _Fmtfl;
  10.     _Fmtfl = (_Fmtfl & ~mask) | (nf & mask & _Fmtmask);
  11.     return (of);
  12.     }
  13.  
  14.  
  15.